hysop.tools.warning module

exception hysop.tools.warning.HysopCacheWarning[source]

Bases: HysopWarning

Custom warning class for hysop caching.

exception hysop.tools.warning.HysopDeprecationWarning[source]

Bases: DeprecationWarning

Custom warning class for hysop deprecation.

exception hysop.tools.warning.HysopDumpWarning[source]

Bases: HysopWarning

Custom warning class for hysop I/O dumps.

exception hysop.tools.warning.HysopPerformanceWarning[source]

Bases: HysopWarning

Custom warning class for hysop performance.

exception hysop.tools.warning.HysopWarning[source]

Bases: RuntimeWarning

Custom warning class for hysop warnings.

hysop.tools.warning.configure_hysop_warnings(action)[source]

Configure hysop warnings. Action can be error, ignore, always, default, module, once. See https://docs.python.org/2/library/warnings.html#warning-filter.

hysop.tools.warning.disable_hysop_warnings()[source]

Configure hysop warnings to ignored. Never print matching warnings.

hysop.tools.warning.enable_hysop_warnings()[source]

Configure hysop warnings to default. Print the first occurrence of matching warnings for each location where the warning is issued.